找传奇、传世资源到传世资源站!

在线更新服务端,客户端程序升级

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

 实现客户端和服务端升级服务器的通信,根据XML文件下载升级文件
from clipboard from clipboard      private bool DoenloadUpdateFile()
        {
            _downLoadSaveTempPath = _downLoadSaveFileName;
            if (!Directory.Exists(_downLoadSaveTempPath))
            {
                Directory.CreateDirectory(_downLoadSaveTempPath);
            }
            int updateFileCount = _updateFileList.Count;
            SetUpdateProBar((updateFileCount > 0 ? updateFileCount : 1) * 100, true);
            for (int i = 0; i < updateFileCount; i )
            {
                SetUpdateLab(string.Format("正在更新第{0}个文件:{1}", (i 1).ToString(), _updateFileList[i]), Enum.UpdateState.downloading);
                using (WebClient wcDown = new WebClient())
                {
                    try
                    {
                        wcDown.DownloadFile(_downLoadUrl _updateFileList[i], _downLoadSaveTempPath _updateFileList[i]);
                    }
                    catch (Exception ex)
                    {   
                        return false;
                    }
                }
                SetUpdateProBar(100, false);
                Thread.Sleep(100);
            }

            return true;
        }

        private void ReplaceFile()
        {
            SetUpdateLab("正在重启程序", Enum.UpdateState.closeingmain);
            OpreateMainForm(true);
            Thread.Sleep(1000);
            SetUpdateLab("开始替换文件", Enum.UpdateState.replacing);
            try
            {
                foreach (string fileName in _updateFileList)
                {
                    string moveNewPath = AppDomain.CurrentDomain.BaseDirectory fileName;
                    if (File.Exists(moveNewPath)) File.Delete(moveNewPath);
                    File.Move(_downLoadSaveTempPath fileName, moveNewPath);
                }
                //LrdComm.Helper.FileIO.DeleteFolder(_downLoadSaveTempPath);
            }
            catch (System.Exception ex)
            {

                SetUpdateLab(string.Format("替换文件时出错:{0}", ex.ToString()), UpdateApp.Enum.UpdateState.error);
                return;
            }
            SaveLocalXml();
            Thread.Sleep(500);
            SetUpdateLab("正在重启程序", Enum.UpdateState.startmain);
            OpreateMainForm(false);
            Thread.Sleep(500);
            SetUpdateLab("更新完成", Enum.UpdateState.success);
        }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复